@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
*{
  margin: 0;
  padding: 0;
  font-family: 'Poppins',sans-serif;
}
/* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
}
::selection{
background: rgb(0,123,255,0.3);
}
body{
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: #171717;
}
.login-form{
  margin-top: 50px;
  margin-bottom: 50px;
  margin-right: 10%;
  margin-left: 10%;
  position: relative;
  width: auto;
  height: auto;
  background: #1b1b1b;
  padding: 40px 35px 60px;
  box-sizing: border-box;
  border: 1px solid black;
  border-radius: 5px;
  background: linear-gradient(#333,#222);
}

@media (max-width: 1000px)
{
  .g-recaptcha
  {
    transform:scale(0.8);
    -webkit-transform:scale(0.8);
    transform-origin:0 0;
    -webkit-transform-origin:0 0;
  }
}

@media (min-width: 1001px) 
{
  .login-form
  {
    min-width: 400px;
  }

  .g-recaptcha
  {
    margin-left: 14px;
  }
}

.text
{
  font-size: 30px;
  color: #c7c7c7;
  font-weight: 600;
  letter-spacing: 2px;
}
form
{
  margin-top: 40px;
}

form .field
{
  margin-top: 20px;
  display: flex;
  clear: both;
}

.field .fas
{
  height: 50px;
  width: 60px;
  color: #868686;
  font-size: 20px;
  line-height: 50px;
  border: 1px solid #444;
  border-right: none;
  border-radius: 5px 0 0 5px;
  background: linear-gradient(#333,#222);
}

.funkcja select
{
  margin-top: 25px;
  padding-left: 10px;
  height: 30px;
  background: linear-gradient(#333,#222);
  color: #999;
  font-size: 16px;
}

.funkcja select:focus
{
  color: #339933;
  box-shadow: 0 0 5px rgba(0,255,0,.2),
              inset 0 0 5px rgba(0,255,0,.1);
  background: linear-gradient(#333933,#222922);
}
.funkcja option
{
  background: #444;
  margin-bottom: 25px;
}

input:focus
{
  color: #339933;
  box-shadow: 0 0 5px rgba(0,255,0,.2),
              inset 0 0 5px rgba(0,255,0,.1);
  background: linear-gradient(#333933,#222922);
  animation: glow .8s ease-out infinite alternate;
  float: left;
}

.field input,form button
{
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 19px;
  color: #868686;
  padding: 0 15px;
  border-radius: 0 5px 5px 0;
  border: 1px solid #444;
  caret-color: #339933;
  background: linear-gradient(#333,#222);
}

input:-webkit-autofill
{
  transition: background-color 5000s;
  -webkit-text-fill-color: #868686;
  font-size: 19px;
}




@keyframes glow 
{
  0%
  {
    border-color: #339933;
    box-shadow: 0 0 5px rgba(0,255,0,.2),
                inset 0 0 5px rgba(0,0,0,.1);
  }

  100%
  {
    border-color: #6f6;
    box-shadow: 0 0 20px rgba(0,255,0,.6),
                inset 0 0 10px rgba(0,255,0,.4);
  }
}

button
{
  margin-top: 25px;
  border-radius: 5px!important;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
}

button:hover
{
  color: #339933;
  border: 1px solid #339933;
  box-shadow: 0 0 5px rgba(0,255,0,.3),
              0 0 10px rgba(0,255,0,.2),
              0 0 15px rgba(0,255,0,.1),
              0 2px 0 black;
}

.link
{
  margin-top: 25px;
  color: #868686;
}

.link a
{
  color: #339933;
  text-decoration: none;
}

.link a:hover
{
  text-decoration: underline;
}

.field.error2
{
  padding-top: 100px;
}

.g-recaptcha
{
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.error
{
  color: #ff2424;
  font-weight: 500;
}